home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / cp2dekit / h / err.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-29  |  793 b   |  36 lines

  1. //***************************************************************************
  2. //
  3. // this file is (c) '94-'96 Niklas Beisert
  4. //
  5. // this file is part of the cubic player development kit.
  6. // you may only use/modify/spread this file under the terms stated
  7. // in the cubic player development kit accompanying documentation.
  8. //
  9. //***************************************************************************
  10.  
  11. #ifndef __ERR_H
  12. #define __ERR_H
  13.  
  14. enum
  15. {
  16.   errOk=0,
  17.   errGen=-1,
  18.   errAllocMem=-9,
  19.   errAllocSamp=-10,
  20.   errFileOpen=-17,
  21.   errFileRead=-18,
  22.   errFileWrite=-19,
  23.   errFileMiss=-20,
  24.   errFormStruc=-25,
  25.   errFormSig=-26,
  26.   errFormOldVer=-27,
  27.   errFormNewVer=-28,
  28.   errFormSupp=-29,
  29.   errFormMiss=-30,
  30.   errPlay=-33,
  31.   errSymSym=-41,
  32.   errSymMod=-42,
  33. };
  34.  
  35. #endif
  36.